home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Source.bin / GroupBundle.java < prev    next >
Text File  |  1998-08-22  |  605b  |  20 lines

  1. package symantec.itools.resources;
  2.  
  3. import java.util.ListResourceBundle;
  4.  
  5. //  08/19/98    LAB    Rearanged group structure for NextGen.
  6.  
  7. public class GroupBundle extends ListResourceBundle {
  8.    public Object[][] getContents() {
  9.        return contents;
  10.    }
  11.    static final Object[][] contents = {
  12.        // LOCALIZE THIS
  13.        {"GroupAWTAdditions", "AWT Additions"},
  14.        {"GroupAWTMultimedia", "AWT Multimedia"},
  15.        {"GroupShape", "Shape"},
  16.        {"GroupPreDefinedTF", "Predefined TextFields"},
  17.        {"GroupSwingAdditions", "Swing Additions"},
  18.        // END "LOCALIZE THIS"
  19.    };
  20. }